home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 3.2 / Ham Radio Version 3.2 (Chestnut CD-ROMs)(1993).ISO / packet / n17jsrc / tip.c < prev    next >
C/C++ Source or Header  |  1991-06-25  |  3KB  |  119 lines

  1. /* "Dumb terminal" session command for serial lines
  2.  * Copyright 1991 Phil Karn, KA9Q
  3.  *
  4.  *    Feb '91    Bill Simpson
  5.  *        rlsd control and improved dialer
  6.  */
  7. /* mods by PA0GRI */
  8. #include "global.h"
  9. #include "mbuf.h"
  10. #include "proc.h"
  11. #include "iface.h"
  12. #ifndef    UNIX
  13. #include "8250.h"
  14. #endif
  15. #include "asy.h"
  16. #include "tty.h"
  17. #include "session.h"
  18. #include "socket.h"
  19. #include "commands.h"
  20. #include "devparam.h"
  21.  
  22.  
  23. static void tip_out __ARGS((int dev,void *n1,void *n2));
  24.  
  25.  
  26. /* Execute user telnet command */
  27. int
  28. dotip(argc,argv,p)
  29. int argc;
  30. char *argv[];
  31. void *p;
  32. {
  33.     struct session *sp;
  34.     register struct iface *ifp;
  35.     char *ifn;
  36.     int (*rawsave) __ARGS((struct iface *,struct mbuf *));
  37.     int c;
  38.  
  39.     if((ifp = if_lookup(argv[1])) == NULLIF){
  40.         tprintf("Interface %s unknown\n",argv[1]);
  41.         return 1;
  42.     }
  43.     if( ifp->dev >= ASY_MAX || Asy[ifp->dev].iface != ifp ){
  44.         tprintf("Interface %s not asy port\n",argv[1]);
  45.         return 1;
  46.     }
  47.     if(ifp->raw == bitbucket){
  48.         tprintf("tip or dialer session already active on %s\n",argv[1]);
  49.         return 1;
  50.     }
  51.  
  52.     /* Allocate a session descriptor */
  53.     if((sp = newsession(argv[1],TIP,0)) == NULLSESSION){
  54.         tprintf("Too many sessions\n");
  55.         return 1;
  56.     }
  57.  
  58.     /* Save output handler and temporarily redirect output to null */
  59.     rawsave = ifp->raw;
  60.     ifp->raw = bitbucket;
  61.  
  62.     /* Suspend the packet input driver. Note that the transmit driver
  63.      * is left running since we use it to send buffers to the line.
  64.      */
  65.     suspend(ifp->rxproc);
  66.  
  67.     /* Put tty into raw mode */
  68.     sp->ttystate.echo = 0;
  69.     sp->ttystate.edit = 0;
  70.     sockmode(sp->output,SOCK_BINARY);
  71.  
  72.     /* Now fork into two paths, one rx, one tx */
  73.     ifn = if_name( ifp, " tip out" );
  74.     sp->proc1 = newproc(ifn,256,tip_out,ifp->dev,NULL,NULL,0);
  75.     free( ifn );
  76.  
  77.     ifn = if_name( ifp, " tip in" );
  78.     chname( Curproc, ifn );
  79.     free( ifn );
  80.  
  81.     /* bring the line up (just in case) */
  82.     if ( ifp->ioctl != NULL )
  83.         (*ifp->ioctl)( ifp, PARAM_UP, TRUE, 0L );
  84.  
  85.     while((c = get_asy(ifp->dev)) != -1)
  86.         tputc(c & 0x7f);
  87.     tflush();
  88.  
  89.     killproc(sp->proc1);
  90.     sp->proc1 = NULLPROC;
  91.     ifp->raw = rawsave;
  92.     resume(ifp->rxproc);
  93.     keywait(NULLCHAR,1);
  94.     freesession(sp);
  95.     return 0;
  96. }
  97.  
  98.  
  99. /* Output process, DTE version */
  100. static void
  101. tip_out(dev,n1,n2)
  102. int dev;
  103. void *n1,*n2;
  104. {
  105.     struct mbuf *bp;
  106.     int c;
  107.  
  108.     while((c = recvchar(Curproc->input)) != EOF){
  109.         if(c == '\n')
  110.             c = '\r';        /* NL => CR */
  111.         bp = pushdown(NULLBUF,1);
  112.         bp->data[0] = c;
  113.         asy_send(dev,bp);
  114.         Asy[dev].iface->lastsent = secclock();
  115.     }
  116. }
  117.  
  118.  
  119.